GET Hero Counters
/web/mlbb/heroes/{hero_identifier}/counters
Get information about heroes that counter a specific hero by ID or name. Supports query parameters for rank tier, pagination, and localization.
Path parameters:
- hero_identifier: Hero identifier as numeric hero ID or hero name. Accepts values like
30,Yi Sun-shin, oryisunshin.
Query parameters:
- days: Time window for counter data. Allowed values:
1,3,7,15,30. - rank: Rank filter. Allowed values:
all,epic,legend,mythic,honor,glory. - size: Number of items per page (minimum: 1).
- index: Page index (starting from 1).
- lang: Language code for localized content (default:
en).
The response includes hero counter data:
- records: Array of hero entries, each containing:
- _id: Unique record identifier.
- _createdAt: Creation timestamp.
- _updatedAt: Last update timestamp.
- data:
- main_hero:
- data:
- head: Main hero portrait image URL.
- name: Main hero name.
- data:
- main_heroid: Main hero ID.
- main_hero_channel:
- id: Channel ID reference.
- main_hero_appearance_rate: Pick rate of the main hero.
- main_hero_ban_rate: Ban rate of the main hero.
- main_hero_win_rate: Win rate of the main hero.
- sub_hero: Array of counter heroes, each containing:
- heroid: Counter hero ID.
- hero_win_rate: Counter hero win rate.
- hero_appearance_rate: Counter hero pick rate.
- increase_win_rate: Impact of counter hero on win rate.
- hero_channel:
- id: Channel ID reference.
- hero:
- data:
- head: Counter hero portrait image URL.
- data:
- min_win_rate6 through min_win_rate20: Win rate breakdown across match durations.
- sub_hero_last: Array of negative synergy heroes, each containing:
- heroid: Sub-hero ID.
- hero_win_rate: Sub-hero win rate.
- hero_appearance_rate: Sub-hero pick rate.
- increase_win_rate: Negative impact on win rate.
- min_win_rate6 through min_win_rate20: Win rate breakdown across match durations.
- main_hero:
This endpoint is useful for:
- Identifying which heroes are effective counters.
- Analyzing matchup dynamics.
- Understanding performance trends across different ranks and match durations.
{
"code": 0,
"message": "OK",
"data": {
"records": [
{
"_createdAt": 1724837698334,
"_id": "66ceef42af5771f18c500da2",
"_updatedAt": 1774890906262,
"data": {
"bigrank": "9",
"camp_type": "0",
"main_hero": {
"data": {
"head": "https://akmweb.youngjoygame.com/web/svnres/img/mlbb/homepage/100_3391df36d6dcc54dd1c417098e15ec59.png",
"name": "Fanny"
}
},
"main_hero_appearance_rate": 0.009896,
"main_hero_ban_rate": 0.073593,
"main_hero_channel": {
"id": 2678753
},
"main_hero_win_rate": 0.458363,
"main_heroid": 17,
"match_type": "0",
"sub_hero": [
{
"hero": {
"data": {
"head": "https://akmweb.youngjoygame.com/web/svnres/img/mlbb/homepage/100_474cea36a4bfdc7bf7d94530853a99b2.png"
}
},
"hero_appearance_rate": 0.002274,
"hero_channel": {
"id": 2678756
},
"hero_index": 1,
"hero_win_rate": 0.553658,
"heroid": 20,
"increase_win_rate": 0.048121,
"min_win_rate10_12": 0.452088,
"min_win_rate12_14": 0.439306,
"min_win_rate14_16": 0.426901,
"min_win_rate16_18": 0.493865,
"min_win_rate18_20": 0.465217,
"min_win_rate20": 0.486553,
"min_win_rate6": 0.333333,
"min_win_rate6_8": 0.5,
"min_win_rate8_10": 0.355263
}
],
"sub_hero_last": [
{
"hero": {
"data": {
"head": "https://akmweb.youngjoygame.com/web/svnres/img/mlbb/homepage/100_ff39deb9c6afec3d977fdbe9d86f78cb.png"
}
},
"hero_appearance_rate": 0.002147,
"hero_channel": {
"id": 2678748
},
"hero_index": 1,
"hero_win_rate": 0.476658,
"heroid": 12,
"increase_win_rate": -0.045228,
"min_win_rate10_12": 0.384454,
"min_win_rate12_14": 0.456767,
"min_win_rate14_16": 0.435701,
"min_win_rate16_18": 0.459155,
"min_win_rate18_20": 0.420792,
"min_win_rate20": 0.450402,
"min_win_rate6": 1,
"min_win_rate6_8": 0.315789,
"min_win_rate8_10": 0.5
}
]
},
"id": 103076,
"sourceId": 2756569
}
],
"total": 1
}
}